home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Leser 15 / Amiga Plus Leser CD 15.iso / Tools / Development / MCC_SpeedBar / Developer / C / Include / MUI / SpeedBarCfg_mcc.h < prev    next >
Encoding:
C/C++ Source or Header  |  2002-03-13  |  1.6 KB  |  66 lines

  1. #ifndef SPEEDBARCFG_MCC_H
  2. #define SPEEDBARCFG_MCC_H
  3.  
  4. /***********************************************************************
  5. **
  6. ** SpeedBarCfg.mcc
  7. ** Copyright 1999-2002 by Simone Tellini
  8. **
  9. ** $VER: SpeedBarCfg_mcc.h 12.3 (6.2.2002)
  10. ** Updated by Alfonso Ranieri
  11. **
  12. ***********************************************************************/
  13.  
  14. #ifndef LIBRARIES_MUI_H
  15. #include <libraries/mui.h>
  16. #endif
  17.  
  18. /***********************************************************************/
  19.  
  20. #define MUIC_SpeedBarCfg    "SpeedBarCfg.mcc"
  21. #define SpeedBarCfgObject   MUI_NewObject(MUIC_SpeedBarCfg
  22.  
  23. /***********************************************************************/
  24.  
  25. #define SBCTAGBASE 0xF76B00A0
  26.  
  27. /***********************************************************************/
  28. /*
  29. ** Methods
  30. */
  31.  
  32. #define MUIM_SpeedBarCfg_GetCfg (SBCTAGBASE+1)    /*  PRIVATE  */
  33. #define MUIM_SpeedBarCfg_SetCfg (SBCTAGBASE+2)    /*  PRIVATE  */
  34.  
  35. /***********************************************************************/
  36. /*
  37. ** Attributes
  38. */
  39.  
  40. #define MUIA_SpeedBarCfg_Config (SBCTAGBASE+1)   /*  MUIS_SpeedBarCfg_Config *   ISG */
  41.  
  42. /***********************************************************************/
  43. /*
  44. ** Values
  45. */
  46.  
  47. #define MUIV_SpeedBarCfg_Borderless     (1<<0)
  48. #define MUIV_SpeedBarCfg_Raising        (1<<1)
  49. #define MUIV_SpeedBarCfg_SmallButtons   (1<<2)
  50. #define MUIV_SpeedBarCfg_Sunny          (1<<3)
  51.  
  52. /***********************************************************************/
  53. /*
  54. ** Structures
  55. */
  56.  
  57. struct MUIS_SpeedBarCfg_Config
  58. {
  59.     UWORD   ViewMode;
  60.     ULONG   Flags;
  61. };
  62.  
  63. /***********************************************************************/
  64.  
  65. #endif /* SPEEDBARCFG_MCC_H */
  66.